home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / business / autorexx.lha / PlugIns / Trigger.rexx < prev   
OS/2 REXX Batch file  |  1996-12-28  |  418b  |  25 lines

  1. /*
  2.     Trigger.rexx - DB PlugIn : A simple trigger to tag checkboxes
  3.     (c) 1996 Karl Mottram - Bifrost Industries
  4.     Started 1530 hrs - 23-12-96
  5.     Last Updated $VER: v1.0_(23-12-96) - The bare bones...
  6. */
  7.  
  8. Init:
  9.     PlugPath = "DB:PlugIns/"            /* Dont forget the / */
  10.  
  11. ReadStream:
  12.     Parse Arg PlugIn
  13.         PlugIn = Strip(PlugIn)
  14.  
  15. Reset:
  16.     CURRENTFIELD Trigger
  17.     PUTFIELD 0
  18.  
  19. Fire:
  20.     Address Command "c:RX "PlugPath||PlugIn
  21.  
  22. Exzit:
  23.     Exit
  24.  
  25.